home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993 April: Penguin on DISC / ADC Developer CD (1993-04) (''Penguin On DISC'')_iso / Dev.CD Apr 93.iso / System Software / System Extensions / AppleScript Beta / Example Scripts / Example Scripts (as text) / Finder Scripts / Duplicate & Open < prev    next >
Encoding:
Text File  |  1992-12-02  |  78 b   |  6 lines  |  [TEXT/ToyS]

  1. on open x
  2.     tell application "Finder"
  3.         duplicate x
  4.         Open x
  5.     end tell
  6. end open